home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / dl_exsrc.zoo / lalloc.c < prev    next >
C/C++ Source or Header  |  1994-06-28  |  168b  |  11 lines

  1. #include <stdlib.h>
  2. #include "extras.h"
  3.  
  4. extern void *_malloc __PROTO((unsigned long));
  5.  
  6. void *lalloc(size)
  7.   unsigned long size;
  8. {
  9.   return _malloc(size);
  10. }
  11.